Conditions | 2 |
Paths | 2 |
Total Lines | 20 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | // package metadata file for Meteor.js |
||
13 | Package.onUse(function (api) { |
||
14 | api.versionsFrom('[email protected]'); |
||
15 | api.use('jquery', 'client'); |
||
16 | var assets = [ |
||
17 | 'dist/fonts/glyphicons-halflings-regular.eot', |
||
18 | 'dist/fonts/glyphicons-halflings-regular.svg', |
||
19 | 'dist/fonts/glyphicons-halflings-regular.ttf', |
||
20 | 'dist/fonts/glyphicons-halflings-regular.woff', |
||
21 | 'dist/fonts/glyphicons-halflings-regular.woff2' |
||
22 | ]; |
||
23 | if (api.addAssets) { |
||
24 | api.addAssets(assets, 'client'); |
||
25 | } else { |
||
26 | api.addFiles(assets, 'client', { isAsset: true }); |
||
27 | } |
||
28 | api.addFiles([ |
||
29 | 'dist/css/bootstrap.css', |
||
30 | 'dist/js/bootstrap.js' |
||
31 | ], 'client'); |
||
32 | }); |
||
33 |